-
Notifications
You must be signed in to change notification settings - Fork 365
feat: enhance category selection and filtering with multiple selection #12667
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
feat: enhance category selection and filtering with multiple selection #12667
Conversation
🎉 Snyk checks have passed. No issues have been found so far.✅ security/snyk check is complete. No issues have been found. (View Details) ✅ license/snyk check is complete. No issues have been found. (View Details) |
// Allow holding Ctrl/Cmd key for multiple selection | ||
// Clear other selections if not using Ctrl/Cmd | ||
if (!e.ctrlKey && !e.metaKey) { | ||
selectedCategories.clear(); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know if that is a good idea as it makes the multiple selection feature "hidden".
I thought this was less disruptive than checkboxes everywhere.
This was the only idea I came up with to keep previous visual appearance.
I was actually looking for a way to select multiple categories, but my need seems to be the opposite: I want to combine categories using an AND condition. That is, when selecting two categories, I’d like to show only the posts that belong to both. I’m currently using Quarto 1.7.31. Is this new feature available (with AND or OR)? I couldn’t find anything about it in the documentation. |
Introduce support for multiple category selection and filtering in the listing interface. This change allows users to select multiple categories simultaneously using Ctrl or Cmd.
(no changelog entry for now to avoid conflict)
Screen.Recording.2025-05-02.at.19.58.46.mov